From d4c70998cbe7132b05e6d8b1e79f48030feeea81 Mon Sep 17 00:00:00 2001 From: Kimdonghan Date: Wed, 3 Dec 2025 19:45:10 +0900 Subject: (김동한) partner 메뉴명과 화면 내 h태그 일치 작업 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../partners/(partners)/techsales/rfq-offshore-hull/page.tsx | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx') diff --git a/app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx b/app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx index ee31c95b..1254e992 100644 --- a/app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx +++ b/app/[lng]/partners/(partners)/techsales/rfq-offshore-hull/page.tsx @@ -8,12 +8,16 @@ import { LogIn } from "lucide-react"; import { Shell } from "@/components/shell"; import { VendorQuotationsTable } from "@/lib/techsales-rfq/vendor-response/table/vendor-quotations-table"; import { InformationButton } from "@/components/information/information-button" +import { useTranslation } from "@/i18n"; + export const metadata: Metadata = { title: "기술영업 해양HULL RFQ 관리", description: "기술영업 해양HULL RFQ를 관리합니다.", }; -export default async function VendorQuotationsHullPage() { +export default async function VendorQuotationsHullPage(props: { params: { lng: string } }) { + const { lng } = props.params + const { t } = await useTranslation(lng, 'menu') // 세션 확인 const session = await getServerSession(authOptions); @@ -62,11 +66,11 @@ export default async function VendorQuotationsHullPage() {
-

기술영업 해양HULL RFQ

+

{t('menu.vendor.sales.offshore_hull_rfq')}

- 할당받은 해양HULL RFQ에 대한 견적서를 작성하고 관리합니다. + {t('menu.vendor.sales.offshore_hull_rfq_desc')}

-- cgit v1.2.3